home *** CD-ROM | disk | FTP | other *** search
- // the declaration of class CAptChgLineDialog
- // Copyright (C) 1997 Kazutaka Hirata <khirata@jove.acs.unt.edu>
-
- #ifndef _APTLINE_H_
- #define _APTLINE_H_
-
- // stdafx.h should be included already
-
- #include "../kbandata/apt.h"
- #include "../kbandata/apttable.h"
- #include "../resource.h"
- #include "aptcmn.h"
-
- class CAptChgLineDialog : public CAptCommonDialog {
- int m_width;
-
- CEdit& ctlWidth();
- virtual void SetAll(const APERTURE& apt);
- void AddAperture(const APERTURE& apt);
- public:
- CAptChgLineDialog(
- CWnd* pParentWnd ,
- const APT_TABLE& apt_table ,
- const APT_TABLE& apt_table_purged,
- const APERTURE& prev
- );
- virtual BOOL OnInitDialog();
- virtual void OnOK();
- protected:
- virtual void DoDataExchange(CDataExchange* pDX);
- public:
- DECLARE_MESSAGE_MAP()
- };
-
- #endif /* _APTLINE_H_ */
-